From e9911be0a5135af26fb6c435089beff854e283f8 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Wed, 12 Nov 2014 11:05:58 +0000 Subject: [PATCH] xl: correct test condition on libxl_domain_info The `if' statement considered return value 0 from libxl_domain_info an error, while 0 actually means success. Signed-off-by: Wei Liu Cc: Ian Campbell Cc: Ian Jackson Acked-by: Ian Campbell --- tools/libxl/xl_cmdimpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 3c9f14686f..9afef3fe05 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -7908,7 +7908,7 @@ static int psr_cmt_show_cache_occupancy(uint32_t domid) /* Each domain */ if (domid != INVALID_DOMID) { libxl_dominfo dominfo; - if (!libxl_domain_info(ctx, &dominfo, domid)) { + if (libxl_domain_info(ctx, &dominfo, domid)) { fprintf(stderr, "Failed to get domain info for %d\n", domid); return -1; } -- 2.30.2